C-cursus 2017
Welcome to the C-course organised by Inter-Actief! Here you will find all the files you need, including the exercises referenced during the course. If you have any questions, do not hesistate to ask, there should be TA's walking around.
Cheat sheet
Some useful functions you will probably need. For more information about a function see man 3 [function].
- scanf(format, variables...)
- printf(format, arguments...)
- fopen(path, mode)
- fscanf(file, format, variables...)
- fprintf(file, format, arguments...)
- fclose(file)
- strlen(string)
- strcmp(string, string)
- malloc(size)
- free(pointer)
- atoi(string)